cody - HTMLify profile

cody
4270 Files
632542 Views
Latest files of /cody/solygambas/html-css-javascript-projects/040-3d boxes background
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
box-sizing: border-box;
}
body {
background-color: #fafafa;
* {
box-sizing: border-box;
}
body {
background-color: #fafafa;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>3D Boxes Background</title>
</head>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>3D Boxes Background</title>
</head>
const boxesContainer = document.getElementById("boxes");
const button = document.getElementById("btn");
const createBoxes = () => {
for (let i = 0; i < 4; i++) {
for (let j = 0; j < 4; j++) {
const box = document.createElement("div");
box.classList.add("box");
const button = document.getElementById("btn");
const createBoxes = () => {
for (let i = 0; i < 4; i++) {
for (let j = 0; j < 4; j++) {
const box = document.createElement("div");
box.classList.add("box");